Pull Oracle WebLogic Base Image

  1. Pull the Oracle WebLogic server image from Oracle Container Registry (Version: 15.1.1.0).

  2. Before extracting this image from the Container Registry, ensure that your Docker client has logged in successfully using the following docker log-in commands:

    docker login

    $ docker login container-registry.oracle.com

    Username:

    Password:

    Login successful

    Note: Use your Oracle SSO username and password to log in to the Oracle Registry.

  3. Pull WebLogic base image version 15.1.1.0:

    docker pull

    $ docker pull container-registry.oracle.com/middleware/weblogic_cpu:15.1.1.0-generic-jdk17-ol9-260109

    Note: The resulting images will NOT have a domain pre-configured. You must extend the image with your own Dockerfile, and create your domain using WLST.

  4. The WebLogic Server domain can be customized by extending this image. The best way to create your own domain is by writing your own Dockerfiles, and by using WebLogic Scripting Tool (WLST) to create clusters, data sources, JMS servers, security realms, and deploying applications.

  5. In the Dockerfile you will extend the WebLogic Server image with the 'FROM container-registry.oracle.com/middleware/weblogic_cpu:15.1.1.0-generic-jdk17-ol9-260109' directive.